home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / ptrapsettings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-30  |  741 b   |  38 lines

  1. /*
  2.  *--- PTrapSettings.h -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PTrapSettings__
  10. #define __PTrapSettings__
  11.  
  12. class PGetTrapSettings;
  13.  
  14. class PTrapSettings
  15. {
  16.  
  17. public:
  18.  
  19.     PTrapSettings
  20.       (    short    bEnable,
  21.         long    xDefWidth,
  22.         long    xBlackWidth,
  23.         short    dStepLimit,
  24.         short    dCentThresh,
  25.         short    dTextLimit,
  26.         short    bTrapOverImp );
  27.     
  28.     PTrapSettings(const PGetTrapSettings& trapSettings);
  29.  
  30. private:
  31.  
  32.     PTrapSettings();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PTrapSettings.h
  38.